imagen_logo imagen_logo@charset "utf-8";
/* CSS Document */

*{
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: white !important;
}
body {
    background: white !important;
}

/* //////////////////////// */
/* ///// Header Index ///// */
/* //////////////////////// */

.contenidoCarousel {
    width: 90%;
    margin-left: 5%;
}

.carousel-inner img {
    width: 100%;
    height: 350px;
    border-radius: 5px;
}
.header {
    width: 90%;
    height: 165px;
    border-radius: 5px;
    margin: auto;
    display: flex;
    align-items: center;
    background-image: url("..//imagenes/Impresion-gran-formato.jpg");
}
.imagen_logo {
    width: 50%;
    position: relative;
    float: left;    
    margin-left: 1.5rem;
}

.transparente {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    margin: auto;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.50);
}
/* .loginbox {
    width: 91%;
    height: 100%;
    position: relative;
    float: right;
    align-content: ;
    background-color:  transparent;
}
.login {
    width: 20%;
    margin-right: 1.5rem;
    position: relative;
    float: right;
    text-align: right;
} */
.btn-primary {
    background-color: black !important;
    background-color: black !important;
}
.btn-primary:hover {
    color: #666666 !important;
}
.nav {
    width: 90%;
    height: 40px;
    margin-left:  5%;
    background: rgb(255, 102, 0);
    border-radius: 5px;
}

/* //////////////////////// */
/* //////// HERO ////////// */
/* //////////////////////// */

.hero {
    height:25vh;
    display:flex; flex-direction:column; justify-content:center; align-items:center;
    text-align:center; color:black; padding:0 20px;
}
.typewriter {
    font-weight: bold;
    font-size:3rem;
    text-shadow:2px 2px 4px rgba(0,0,0,0.6);
    white-space:nowrap;
    display:inline-flex;
    align-items:center;
}
.cursor {
    display:inline-block;
    width:3px;
    height:1em;
    background:black;
    margin-left:5px;
    animation: blink 0.7s infinite;
}
@keyframes blink {
    50% { opacity: 0; }
}

.hero p {
    font-size:1.5rem; margin:10px 0 20px;
    animation: fadeIn 2s ease forwards; animation-delay:0.5s;
    color: black;
}
.btn_hero {
    background:rgb(255, 102, 0); color:white; padding:12px 25px; 
    border-radius:25px; font-weight:bold; 
    transition: background .3s;
    animation: fadeIn 1s ease forwards; animation-delay:1s;
}
.btn_hero:hover {background:rgb(255, 102, 0); text-decoration:none; color:lightslategray;}

/* //////////////////////// */
/* ///// Cartas Index ///// */
/* //////////////////////// */

.cartas {
    width: 1200px;
    height: 415px;
    background: white !important;
    margin: auto;
}
.carta {
    width: 350px;
    height: 415px;
}
.cartaimg {
    width: 350px;
    height: 133px;
    margin-bottom: 3px;
}
.cartaparrafo {
    width: 350px;
    height: 267px;
    background: #E8E8E8;
    margin-bottom: 3px;
}
.cartatxt{
    font-size: 14px;
    color: #6D6D6D;
    margin-left: 20px;
    margin-right: 20px;
    text-align: justify-all;
}
.cartatitulo {
    font-size: 32px;
    color: #000000;
}
.card-text {
    color: black !important;
}

h5 {
    background-color: white;
    color: black !important;
}

.nosotros_transparencia{
    background-color: rgba(255, 255, 255, 0.25);
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
    width: 90%;
    margin-left: 5%;
}

/* //////////////////////// */
/* //////// Galeria /////// */
/* //////////////////////// */

.galeria {
    width: auto;
    margin: auto;
}

h3.section-title {text-align:center; font-weight: bold; font-size:2rem; margin-bottom:20px; color:rgb(255, 102, 0);}
.gallery {width: 90%; margin-left: 5%; place-items: center; display:grid; grid-template-columns:repeat(auto-fit, minmax(200px, 1fr)); padding-bottom: 20px; }
.gallery img {display: block; object-fit: cover; width: 100%; height: 300px; padding: 10px; border-radius:25px; transition:transform .3s;}
.gallery img:hover {transform:scale(1.05);}

.contenedor-imagenes{
    display: flex;
    width: 85%;
    margin: auto;
    justify-content: space-around;
    flex-wrap: wrap;
    border-radius: 3px;
}

.contenedor-imagenes .imagen{
    width: 32%;
    position: relative;
    height: 250px;
    margin-bottom: 5px;
    box-shadow: 0px 0px 3px 0px rgba(0,0,0,.75)
}

.imagen img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(255, 102, 0, 0.75);
    width: 100%;
    height: 20%;
    transition: 0.5s ease;
    overflow: hidden;
}

.overlay h2{
    color: #ffffff;
    font-weight: 200;
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
}

.imagen:hover .overlay{
    height: 100%;
    cursor: pointer;
}

.light-box{
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.75);
    transition: transform .3s ease-in-out;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0);
}

.light-box img{
    
    max-height: 90vh;
}

.light-box:target{
    transform: scale(1);
}

.close{
    display: block;
    position: absolute;
    top: 40px;
    right: 40px;
    background-color: rgb(255, 102, 0);
    color: white !important;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    padding-top: 8px;
}

/* //////////////////////// */
/* /////// Pie Index ////// */
/* //////////////////////// */

.pie {
    width: 90%;
    height: 120px;
    border-radius: 5px;
    margin: auto;
    background-color: rgb(255, 102, 0);
/*     background: #E6E6E6; */
    border-radius: 5px;
    align-items: center;
}

.pielogo {
    width: 180px;
    height: 110px;
    float: left;
    align-items: center;
}

.pieimagen {
    height: 90%;
    margin-top: 1rem;
    margin-left: 1.5rem;
}

.pietexto {
    width: 600px;
    height: 100px;
    margin-top: 0.5rem;
    margin-right: 1.5rem;
    float: right;
    text-align: right;
    color: white;
    font-size: 14px;
}

.pietexto a {
    color:  white;
    text-decoration:none;
}

.pietexto a:hover {
    font-weight: bold;
    color: white;
    text-decoration:none;
}

/* //////////////////////// */
/* /////// Nosotros ////// */
/* //////////////////////// */

.contenidoNosotros {
    width: 90%;
    height: auto;
    padding: 10px;
    margin-left: 5%;
}

.imagen-carta {
    width: 200px;
    height: 100px;
    background-color: none;
}

.card-body {
    padding-bottom: 0 !important;
    padding-top: 0.6rem !important;
}

#contenedor {
    width: 1200px;
    height: 1370px;
    border-radius: 5px;
    margin: auto;
    background: White;
}


#masinformacion {
    width: 1200px;
    background-color: white;
    margin: auto;
}
#contactenos {
    width: 1200px;
    height: 255px;
    background-color: black;
    margin: auto;
    color: white;
    border-radius: 5px;
}

.btnPrynthosNav {
    width: 150px;
    height: 40px;
    background-color: rgb(255, 102, 0);
    border: none;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    padding: 8px;
    margin-left: 5px;
    font-size: 18px;
}
.btnPrynthosNav:hover {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.btnPrynthosNavSelected {
    width: 150px;
    height: 40px;
    background-color: rgb(255, 102, 0);
    font-weight: bold;
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    padding: 8px;
    margin-left: 5px;
    font-size: 18px;
    border-radius: 5px;
}
.btnPrynthosNavSelected:hover {
    color: rgb(255, 102, 0);
    text-decoration: none;
    font-weight: bold;
}
.btnPrynthos {
    width: 120px;
    height: 40px;
    background-color: black;
    border: none;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    margin-right: 10px;
    padding: 8px;
    border-radius: 5px;
}
.btnPrynthos:hover {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.btnPrynthosmini {
    font-size: 10px;
    width: 60px;
    height: 20px;
    border-radius: 5px;
    background-color: red;
    border: none;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    padding: 2px;
}
.btnPrynthosmini:hover {
    color: #D2D2D2;
    text-decoration: none;
}
#contactenosizq {
    margin-top: 0px;
    margin-left: 50px;
    width: 450px;
    height: 165px;
    float: left;
}
#contactenosder {
    margin-top: 0px;
    margin-right: 50px;
    width: 600px;
    height: 165px;
    float: right;
}
.inputPrynthos {
    font-size: 16px;
    background-color: #FFFFFF;
    color: #7D7D7D;
    margin-bottom: 20px;
    width: 450px;
    height: 38px;
    padding-left: 5px;
    padding-right: 5px;
    border: 1px solid;
    border-color: #C7C8C8;
    border-radius: 5px;
}
.inputPrynthos:focus {
    box-shadow: 0 0 20px 0 cyan;
    border-radius: 5px;
}
.textareaPrynthos {
    font-size: 16px;
    background-color: #FFFFFF;
    color: #7D7D7D;
    width: 600px;
    padding-left: 5px;
    padding-right: 5px;
    border: 1px solid;
    border-color: #C7C8C8;
    border-radius: 5px;
    max-height: 38px;
    min-height: 96px;
    margin-bottom: 20px;
    text-align: left;
}
.textareaPrynthos:focus {
    box-shadow: 0 0 20px 0 cyan;
    border-radius: 5px;
}
.tituloform {
    font-size: 40px;
    margin: auto;
    margin-bottom: 20px;
    margin-left: 50px;
    color: White;
    padding-top: 10px;
}

.col1 {
    width: 350px;
    margin-top: 5px;
    margin-left: 37.5px;
    float: left;
}
.col2 {
    width: 350px;
    margin-top: 5px;
    margin-left: 37.5px;
    margin-right: 37.5px;
    float: left;
}
.col3 {
    width: 350px;
    margin-top: 5px;
    margin-right: 37.5px;
    float: right;
}


